home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pro-Cent Games: For Only 1 Cent!
/
Pro Cent Games.bin
/
DoubleBreak.exe
/
scripts
/
frame_2
/
PlaceObject2_13_72
/
CLIPACTIONRECORD onClipEvent(enterFrame).as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-02-23
|
417 b
|
26 lines
onClipEvent(enterFrame){
if(_root.gameOn)
{
if(_root.useMouseOn)
{
this._x = _root._xmouse;
}
else if(Key.isDown(Key.LEFT))
{
this._x -= 15;
}
else if(Key.isDown(Key.RIGHT))
{
this._x += 15;
}
}
if(this._x < 0)
{
this._x = 0;
}
else if(400 < this._x)
{
this._x = 400;
}
}